Stored Procedures [dbo].[BAEGetFundraisingSources]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@Idvarchar(10)10
SQL Script
CREATE PROCEDURE [dbo].[BAEGetFundraisingSources]
    -- Add the parameters for the stored procedure here
    @Id varchar(10)
AS
BEGIN
exec sp_asi_FRDonations @Id,1,1,1,1,1,1,1,1,1,'','','','','',0,0,'Summary1',0,30, 'Donations'
END



-----------------------------------
--  Fixes orders so that it goes --
--  by BT_ID not ST_ID           --
-----------------------------------
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON

GO
Uses